29128c720a7b32ad463b13f92c7b4a0ee32dc0f8,features/topology-map/org.opennms.features.topology.app/src/main/java/org/opennms/features/topology/app/internal/TopologyUI.java,TopologyUI,selectionChanged,#SelectionContext#,1368

Before Change


    public void selectionChanged(SelectionContext selectionContext) {
        synchronized (m_currentHudDisplayLock) {
            if (m_currentHudDisplay != null) {
                m_currentHudDisplay.setVertexSelectionCount(selectionContext.getSelectedVertexRefs().size());
                m_currentHudDisplay.setEdgeSelectionCount(selectionContext.getSelectedEdgeRefs().size());
            }
        }

After Change



    @Override
    public void selectionChanged(SelectionContext selectionContext) {
        m_hudDisplay.setVertexSelectionCount(selectionContext.getSelectedVertexRefs().size());
        m_hudDisplay.setEdgeSelectionCount(selectionContext.getSelectedEdgeRefs().size());

        //After selection always set the pantool back to active tool